clipped

Clips the view to its rectangular bounds. You can specify whether to apply anti-aliasing for smooth edges.

Type

1clipped?: boolean

Example

1<Text
2  fixedSize
3  frame={{
4    width: 175,
5    height: 100
6  }}
7  clipped={true}
8  border={{
9    style: "gray"
10  }}
11>This long text string is clipped</Text>